Description: Starting in IE6, for the first time ever, you can specify your own image for the browser to use as the cursor! The image will replace the default "arrow" one. Properly done, a custom cursor can bring furthered consistency to your site's design.

Note that the image must be of the type .cur or .ani

Directions:
Simply add the below style sheet to the HEAD section of your page:

Select All
<style>
<!--
BODY{
cursor:url("mycursor.cur");
}
-->
</style>

where "mycursor.cur" is the name of your cursor file and in the same directory as where the page resides. You can change the keyword "BODY" to localize the cursor to a subelement within the page, such as "P".